home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ WinNT Unlock Delay.xpl < prev    next >
Text File  |  2002-11-02  |  2KB  |  45 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="2"
  3. "COUNT"="1"
  4. "UIPATH 1"="System\Screensaver"
  5. "UIPATH 2"="Appearance\System\Screensaver"
  6. "NAME"="Domain Refresh Delay"
  7. "VERSION"="1.13"
  8. "OSVERSION"="01000"
  9. "LANGUAGE"="VBScript"
  10. "TEXT 1"="Unlock Delay (s)"
  11. "DESCRIPTION 1"="By default when a Workstation is unlocked, the domain list is updated if the cached list's age exceeds 120 seconds."
  12. "DESCRIPTION 2"="To avoid delays, this time limit can be increased up to a value of 86400 seconds [one day]."
  13. "DESCRIPTION 3"="Enter a value from "120" to "86400" [no quotes]."
  14. "DESCRIPTION 4"="For more information see MSKB article: http://support.microsoft.com/support/kb/articles/q160/8/39.asp."
  15. "DESCRIPTION 5"="Notice: This setting affects all users on this computer."
  16. "AUTHOR"="Ojatex@aol.com"
  17. "CONTACTURL"="http://members.aol.com/ojatex/"
  18. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  19. "COMMENT 1"="For additional X-Setup program information, go to http://www.xteq.com."
  20. "COMMENT 2"="Thanks to CptSiskoX for the suggestion."
  21.  
  22. sP="HKLM\Software\Microsoft\Windows NT\CurrentVersion\Winlogon\DcacheMinInterval"
  23.  
  24. Sub Plugin_Initialize 
  25.   i=RegReadValue(sP)
  26.   SetUIElement 1,i
  27. End Sub
  28.  
  29. Sub Plugin_CheckData(ElementIndex)
  30. End Sub
  31.  
  32. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  33.  i=GetUIElement(1)
  34.  if len(i)>0 then
  35.     Call RegWriteValue(sP,i,2)
  36.  else
  37.     If RegValueExists(sP) then RegDeleteValue(sP)
  38.  end if
  39.  
  40.  Call Restart() 
  41. End Sub
  42.  
  43. Sub Plugin_Terminate 
  44. End Sub
  45.